﻿/* LLaDNE.css — "Project LLa-DNE" page
   Inherits design tokens from MasterPages/Master.css (:root) */

@keyframes lla-breathe {
    0%, 100% {
        opacity: 0.24;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.44;
        transform: translateX(-50%) scale(1.12);
    }
}

/* ══════════════════ HERO ══════════════════ */
.lla-hero-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    max-width: 130vw;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(125,27,211,0.55) 0%, rgba(222,155,24,0.22) 40%, transparent 68%);
    animation: lla-breathe 7s ease-in-out infinite;
}

.lla-hero {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 72px clamp(20px,5vw,40px) 44px;
}

.lla-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d9b3ff;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(125,27,211,0.25), rgba(222,155,24,0.14));
    border: 1px solid rgba(125,27,211,0.45);
    margin-bottom: 26px;
}

.lla-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 0 rgba(222,155,24,0.6);
    animation: lla-ping 2s ease-out infinite;
}

@keyframes lla-ping {
    0% {
        box-shadow: 0 0 0 0 rgba(222,155,24,0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(222,155,24,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(222,155,24,0);
    }
}

.lla-hero-title {
    font-size: clamp(34px,6vw,68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.8px;
    margin-bottom: 26px;
    background: linear-gradient(120deg, #ffffff 0%, #e6d2ff 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lla-hero-sub {
    font-size: clamp(15px,1.8vw,19px);
    line-height: 1.8;
    color: rgba(236,230,255,0.66);
    max-width: 660px;
    margin: 0 auto 34px;
}

.lla-hero-tags {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lla-tag {
    font-family: 'DejaVu Sans', monospace;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: rgba(236,230,255,0.62);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(18,10,36,0.55);
    border: 1px solid rgba(125,27,211,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lla-tag--build {
    color: #bb80ff;
    border-color: rgba(125,27,211,0.5);
}

.lla-tag--gold {
    color: var(--secondary);
    border-color: rgba(222,155,24,0.4);
}

/* ══════════════════ SECTION SHELL ══════════════════ */
.lla-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 58px clamp(20px,5vw,60px);
}

.lla-section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}

.lla-section-title {
    font-size: clamp(24px,3.6vw,40px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.5px;
    color: #fff;
}

.lla-cards-head {
    text-align: center;
    margin-bottom: 42px;
}

.lla-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(236,230,255,0.62);
    margin-bottom: 16px;
}

    .lla-body:last-of-type {
        margin-bottom: 0;
    }

    .lla-body em {
        font-style: italic;
        color: var(--secondary);
    }

.lla-redact {
    font-family: monospace;
    color: rgba(236,230,255,0.30);
    background: rgba(125,27,211,0.18);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    [data-reveal].lla-in {
        opacity: 1;
        transform: none;
    }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lla-hero-glow, .lla-dot,
    .lla-core-orbit, .lla-core-glow, .lla-core-ping,
    .lla-core-sat, .lla-pilot-pin-ring {
        animation: none !important;
    }
}

/* ══════════════════ VISION ══════════════════ */
.lla-vision {
    max-width: 770px;
    margin: 0 auto;
    text-align: center;
}

.lla-vision-lead {
    font-size: clamp(22px,3vw,32px);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 28px;
}

.lla-vision-p {
    font-size: clamp(15px,1.8vw,18px);
    line-height: 1.85;
    color: rgba(236,230,255,0.64);
    margin-bottom: 18px;
    text-align: left;
}

    .lla-vision-p:last-child {
        margin-bottom: 0;
    }

/* ══════════════════ PILLARS ══════════════════ */
.lla-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.lla-pillar {
    position: relative;
    background: rgba(18,10,36,0.52);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(125,27,211,0.28);
    border-radius: 20px;
    padding: 34px 32px 30px;
    overflow: hidden;
    transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

    .lla-pillar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 8%;
        right: 8%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(125,27,211,0.55) 50%, transparent);
    }

    .lla-pillar:hover {
        transform: translateY(-5px);
        border-color: rgba(125,27,211,0.52);
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }

.lla-pillar-no {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'DejaVu Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: rgba(187,128,255,0.22);
    line-height: 1;
}

.lla-pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(125,27,211,0.18);
    border: 1px solid rgba(125,27,211,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #bb80ff;
}

    .lla-pillar-icon svg {
        width: 24px;
        height: 24px;
    }

.lla-pillar-title {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.lla-pillar-body {
    font-size: 14.5px;
    line-height: 1.78;
    color: rgba(236,230,255,0.57);
}

.lla-pillar--gold .lla-pillar-icon {
    background: rgba(222,155,24,0.14);
    border-color: rgba(222,155,24,0.28);
    color: #f0be5a;
}

.lla-pillar--gold .lla-pillar-no {
    color: rgba(240,190,90,0.28);
}

.lla-pillar--gold::before {
    background: linear-gradient(90deg, transparent, rgba(222,155,24,0.45) 50%, transparent);
}

.lla-pillar--gold:hover {
    border-color: rgba(222,155,24,0.45);
}

/* ══════════════════ OBJECT-X CORE (signature) ══════════════════ */
.lla-core-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.lla-core-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.lla-core-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lla-core-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(125,27,211,0.30);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lla-core-orbit--1 {
    width: 100%;
    height: 100%;
    border-style: dashed;
    border-color: rgba(125,27,211,0.28);
    animation: lla-spin 26s linear infinite;
}

.lla-core-orbit--2 {
    width: 72%;
    height: 72%;
    border-color: rgba(222,155,24,0.30);
    animation: lla-spin 18s linear infinite reverse;
}

.lla-core-orbit--3 {
    width: 46%;
    height: 46%;
    border-color: rgba(187,128,255,0.4);
    animation: lla-spin 12s linear infinite;
}

@keyframes lla-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lla-core-glow {
    position: absolute;
    width: 52%;
    height: 52%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(222,155,24,0.55) 0%, rgba(125,27,211,0.55) 45%, rgba(42,0,96,0.2) 80%);
    filter: blur(6px);
    animation: lla-corepulse 4s ease-in-out infinite;
}

@keyframes lla-corepulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.lla-core-center {
    position: relative;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%, #fff 0%, #d9b3ff 30%, #7D1BD3 65%, #2a0060 100%);
    box-shadow: 0 0 40px rgba(125,27,211,0.8), 0 0 80px rgba(222,155,24,0.3);
}

.lla-core-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(222,155,24,0.6);
    animation: lla-ping-ring 3s ease-out infinite;
}

@keyframes lla-ping-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* orbiting satellites */
.lla-core-sat {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px;
    border-radius: 50%;
}

.lla-core-sat--a {
    background: var(--secondary);
    box-shadow: 0 0 12px rgba(222,155,24,0.9);
    animation: lla-orbit-a 18s linear infinite;
}

.lla-core-sat--b {
    background: #bb80ff;
    box-shadow: 0 0 12px rgba(187,128,255,0.9);
    animation: lla-orbit-b 12s linear infinite;
}

@keyframes lla-orbit-a {
    from {
        transform: rotate(0deg) translateX(137px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(137px) rotate(-360deg);
    }
}

@keyframes lla-orbit-b {
    from {
        transform: rotate(120deg) translateX(88px) rotate(0deg);
    }

    to {
        transform: rotate(480deg) translateX(88px) rotate(-360deg);
    }
}

.lla-core-spec {
    margin-top: 26px;
    background: rgba(18,10,36,0.55);
    border: 1px solid rgba(125,27,211,0.26);
    border-radius: 16px;
    padding: 4px 22px;
}

.lla-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(125,27,211,0.14);
}

    .lla-spec-row:last-child {
        border-bottom: none;
    }

.lla-spec-k {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.lla-spec-v {
    font-size: 13.5px;
    color: var(--text-main);
    text-align: right;
    font-family: 'DejaVu Sans', sans-serif;
}

.lla-spec-v--live {
    color: var(--secondary);
    font-weight: 600;
}

/* ══════════════════ TECHNOLOGY ══════════════════ */
.lla-tech {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

    .lla-tech .lla-section-title {
        margin-bottom: 22px;
    }

.lla-tech-body {
    font-size: clamp(15px,1.7vw,17px);
    line-height: 1.85;
    color: rgba(236,230,255,0.62);
    margin-bottom: 18px;
    text-align: left;
}

    .lla-tech-body em {
        color: var(--secondary);
        font-style: italic;
    }

.lla-tech-redactions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.lla-redact-line {
    font-family: monospace;
    font-size: 15px;
    letter-spacing: 3px;
    color: rgba(236,230,255,0.16);
    background: rgba(125,27,211,0.10);
    border-radius: 6px;
    padding: 7px 16px;
    max-width: 100%;
    overflow: hidden;
}

/* ══════════════════ BUILD STATUS ══════════════════ */
.lla-build {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(18,10,36,0.45);
    border: 1px solid rgba(125,27,211,0.22);
    border-radius: 22px;
    padding: 38px clamp(24px,4vw,44px);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lla-build-row {
    margin-bottom: 22px;
}

.lla-build-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 9px;
}

.lla-build-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(236,230,255,0.78);
}

.lla-build-pct {
    font-family: 'DejaVu Sans', monospace;
    font-size: 12.5px;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.lla-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(125,27,211,0.14);
    overflow: hidden;
}

.lla-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-mid));
    box-shadow: 0 0 12px rgba(125,27,211,0.5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.lla-in .lla-bar-fill {
    transform: scaleX(1);
}

.lla-bar-fill--gold {
    background: linear-gradient(90deg, var(--secondary), #f0be5a);
    box-shadow: 0 0 12px rgba(222,155,24,0.5);
}

.lla-build-note {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ══════════════════ PILOT ══════════════════ */
.lla-pilot {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px;
    align-items: center;
}

.lla-pilot-card {
    position: relative;
    text-align: center;
    background: rgba(18,10,36,0.55);
    border: 1px solid rgba(222,155,24,0.32);
    border-radius: 22px;
    padding: 40px 30px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(222,155,24,0.08);
    overflow: hidden;
}

.lla-pilot-pin {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lla-pilot-pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 16px rgba(222,155,24,0.9);
    z-index: 2;
}

.lla-pilot-pin-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(222,155,24,0.5);
    animation: lla-ping-ring 2.6s ease-out infinite;
}

.lla-pilot-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.lla-pilot-place {
    display: block;
    font-family: 'DejaVu Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.lla-pilot-region {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.lla-pilot-coords {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.lla-pilot-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(222,155,24,0.35);
    background: rgba(222,155,24,0.08);
}

/* ══════════════════ ROADMAP ══════════════════ */
.lla-roadmap {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

    .lla-roadmap::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 6%;
        right: 6%;
        height: 2px;
        background: linear-gradient(90deg, rgba(125,27,211,0.5) 0%, rgba(222,155,24,0.45) 100%);
        z-index: 0;
    }

.lla-rm-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 56px;
}

.lla-rm-ver {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DejaVu Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: rgba(18,10,36,0.95);
    border: 2px solid rgba(125,27,211,0.5);
    border-radius: 999px;
    min-width: 44px;
    padding: 6px 12px;
    z-index: 2;
}

.lla-rm-marker {
    display: none;
}

.lla-rm-item--current .lla-rm-ver {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 18px rgba(222,155,24,0.4);
}

.lla-rm-item--final .lla-rm-ver {
    border-color: rgba(222,155,24,0.5);
    color: var(--secondary);
    font-size: 18px;
}

.lla-rm-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 9px;
}

.lla-rm-item--current .lla-rm-title {
    color: var(--secondary);
}

.lla-rm-body {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(236,230,255,0.55);
    padding: 0 6px;
}

/* ══════════════════ CLOSING ══════════════════ */
.lla-closing-section {
    padding-top: 36px;
    padding-bottom: 36px;
}

.lla-closing {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
    background: rgba(18,10,36,0.45);
    border: 1px solid rgba(125,27,211,0.28);
    border-radius: 26px;
    padding: 56px clamp(28px,5vw,56px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .lla-closing::before {
        content: '';
        position: absolute;
        top: 0;
        left: 15%;
        right: 15%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(222,155,24,0.65), transparent);
    }

.lla-closing-title {
    font-size: clamp(20px,2.8vw,30px);
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.lla-closing-sub {
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(236,230,255,0.62);
    margin-bottom: 32px;
}

.lla-closing-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lla-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 999px;
    transition: filter 0.18s, transform 0.15s, box-shadow 0.18s;
}

    .lla-cta:hover {
        filter: brightness(1.14);
        transform: translateY(-1px);
        box-shadow: 0 8px 28px var(--primary-glow);
    }

.lla-cta--ghost {
    background: transparent;
    border: 1px solid rgba(222,155,24,0.45);
    color: var(--secondary);
}

    .lla-cta--ghost:hover {
        background: rgba(222,155,24,0.10);
        box-shadow: none;
    }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 900px) {
    .lla-pillars {
        grid-template-columns: 1fr;
    }

    .lla-core-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lla-core-visual {
        max-width: 300px;
    }

    .lla-pilot {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lla-roadmap {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

        .lla-roadmap::before {
            display: none;
        }
}

@media (max-width: 560px) {
    .lla-roadmap {
        grid-template-columns: 1fr;
    }

    .lla-closing-actions {
        flex-direction: column;
    }

    .lla-cta {
        width: 100%;
    }

    /* shrink satellite orbits so they don't overflow on small screens */
    @keyframes lla-orbit-a {
        from {
            transform: rotate(0deg) translateX(108px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(108px) rotate(-360deg);
        }
    }

    @keyframes lla-orbit-b {
        from {
            transform: rotate(120deg) translateX(70px) rotate(0deg);
        }

        to {
            transform: rotate(480deg) translateX(70px) rotate(-360deg);
        }
    }
}
